0b888e543c0ae75362a5c2b5d48542d70222fca2,platform/util/src/com/intellij/util/lang/JarLoader.java,JarLoader,buildCache,#ClasspathCache#,108

Before Change


  void buildCache(final ClasspathCache cache) throws IOException {
    ZipFile zipFile = null;
    try {
      zipFile = acquireZipFile();
      if (zipFile == null) return;

      final Enumeration<? extends ZipEntry> entries = zipFile.entries();
      while (entries.hasMoreElements()) {
        ZipEntry zipEntry = entries.nextElement();

After Change



  @Override
  void buildCache(ClasspathCache cache) throws IOException {
    ZipFile zipFile = acquireZipFile();
    try {
      Enumeration<? extends ZipEntry> entries = zipFile.entries();
      while (entries.hasMoreElements()) {